Termination Proof Script

Consider the TRS R consisting of the rewrite rules
1:    i(0)  → 0
2:    0 + y  → y
3:    x + 0  → x
4:    i(i(x))  → x
5:    i(x) + x  → 0
6:    x + i(x)  → 0
7:    i(x + y)  → i(x) + i(y)
8:    x + (y + z)  → (x + y) + z
9:    (x + i(y)) + y  → x
10:    (x + y) + i(y)  → x
There are 5 dependency pairs:
11:    I(x + y)  → i(x) +# i(y)
12:    I(x + y)  → I(x)
13:    I(x + y)  → I(y)
14:    x +# (y + z)  → (x + y) +# z
15:    x +# (y + z)  → x +# y
The approximated dependency graph contains 2 SCCs: {14,15} and {12,13}.
Tyrolean Termination Tool  (0.04 seconds)   ---  May 3, 2006